From: Jim Blandy Date: Sun, 14 Mar 1993 20:56:05 +0000 (+0000) Subject: * fns.c (Fy_or_n_p): Display the answer. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96889 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6a8a9750e8121d30aff8e7cddbb67d4c39604e69;p=emacs.git * fns.c (Fy_or_n_p): Display the answer. --- diff --git a/src/fns.c b/src/fns.c index 21dd3cf6671..75c0dfbf8a5 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1150,6 +1150,9 @@ Also accepts Space to mean yes, or Delete to mean no.") } } UNGCPRO; + + message ("%s(y or n) %c", XSTRING (xprompt)->data, answer ? 'y' : 'n'); + return answer ? Qt : Qnil; }